mnove.
07/03/2023, 8:21 AMThirdPartyEmailPassword
recipe via the supertokens-auth-react
package. When implementing the EmailPassword
recipe I can already customise the entire form page (e.g. creating custom backgrounds, images, etc..) like so:```
<EmailPasswordComponentsOverrideProvider
components={{
EmailPasswordSignIn_Override: ({ DefaultComponent, ...props }) => {
return (
// My custom Signin component
);
},
EmailPasswordSignUp_Override: ({ DefaultComponent, ...props }) => {
return (
// My custom Signup component
);
},
}}
>
```
However, when I try to achieve the same using the ThirdpartyEmailPasswordComponentsOverrideProvider
it seems I can only customise some parts of the form (e.g. footer, etc..). Any suggestions ? Thanks 🙂rp_st
07/03/2023, 8:43 AMporcellus
07/03/2023, 8:51 AMporcellus
07/03/2023, 8:51 AMporcellus
07/03/2023, 8:51 AMmnove.
07/03/2023, 8:59 AMThirdPartyEmailPassword
I can only modify specific components (e.g. ThirdPartySignInAndUpHeader_Override
, ...) and a equivalent of EmailPasswordSignIn_Override
or EmailPasswordSignUp_Override
is not presentporcellus
07/03/2023, 9:13 AMmnove.
07/03/2023, 9:15 AMporcellus
07/03/2023, 9:16 AMmnove.
07/03/2023, 9:17 AMrp_st
07/03/2023, 10:02 AM